/*******************************************/
/*教學日誌 列表 start*/
.stu_msg_container{
  width: 100%;
  max-height: 4.5em;
  display: block;
  overflow: hidden;
}
.button_stu_msg_container_show{
  display: block;
  background-color: #456789;
  color: #ffffff;
  padding: 0 0.2em;
  border-radius: 3px;
  text-align: center;
  font-size: 0.8em;
  cursor: pointer;
}
/*教學日誌 列表 end*/
/*******************************************/
/*教學日誌 回復 填入預設內容 start*/
ol.add_default_reply_lists{
  list-style-position: inside;
  margin: 0;
  padding: 0;
}
ol.add_default_reply_lists li{
  background-color: #ececec;
  margin-bottom: 0.3em;
  padding: 0.02em 0.5em;
  border-radius: 3px;
  cursor: pointer;
}
ol.add_default_reply_lists li:hover{
  background-color: #cdffee;
}
/*******************************************/
._displaynone{
  display: none;
}
#mask_popup{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition:background-color 2s;
  -webkit-transition: background-color 2s;
  background-color: rgba(0, 0, 0, 0.66);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px;
}
/*******************************************/
/**彈出活動框 **/
.float_column_active{
  display: none;
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 99;
  transform: scale(0);
}
.float_column_open{
  animation: effect_float_column_open 0.3s 1 alternate forwards;
  -webkit-animation: effect_float_column_open 0.3s 1 alternate forwards;
}
.float_column_active .active_window{
  line-height: 20pt;
  position: relative;
  display: inline-block;
  -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px;
  -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.6); -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.6); box-shadow: 0 1px 5px rgba(0,0,0,0.6);
  background: #fff;
  padding:36px 20px;
  width: 80%;
  max-width: 660px;
  max-height: 600px;
  overflow: auto;
}
@-webkit-keyframes effect_float_column_open {
  0%{transform: scale(0);}
  100%{transform: scale(1);}
}
@keyframes effect_float_column_open {
  0%{transform: scale(0);}
  100%{transform: scale(1);}
}
.float_column_active .button_close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius:50%;
  background-image: url('../img/icon_close.svg');
  cursor: pointer;
  transition: transform 0.3s; -webkit-transition: transform 0.3s;
  z-index: 9
}
.float_column_active .button_close:hover{
  transform: rotate(0.5turn);
}
.float_column_active .active_window .info{
  width: 100%;
  text-align: left;
  color: #222;
  word-break: break-all;
}
.float_column_active .active_window .info h3{
  font-weight: bold;
  font-size: 1.5em;
  line-height: 115%;
  text-align: center;
  letter-spacing: 0.035em;
  margin: 20px auto 20px auto;
  color: var(--main-orange);
}
/*教學日誌 回復 填入預設內容 end*/
/*******************************************/
/*******************************************/
/*教學日誌 編輯 教材參考與應用 start*/
.reference_sites_lists{
  display: grid;
  gap: 0px;
  grid-template-columns: repeat(1,1fr);
}
.reference_sites_group_sub{
  background-color: #e5eae9;
  padding: 0.25em;
  border-radius: 0.25em;
  margin-bottom: 3px;
}
.reference_sites_group_sub ._option{
  display: block;
}
.reference_sites_group_sub ._option label{
  margin: 0;
  width: 100%;
}
.reference_sites_group_sub ._sub_option{
  display: none;
  padding-left: 1em;
  padding-top: 0.25em;
}
.reference_sites_group_sub ._sub_option ._sub_option_lists{
  display: grid;
  gap: 0px;
  grid-template-columns: repeat(1,1fr);
}
/*教學日誌 編輯 教材參考與應用 end*/
/*******************************************/